home *** CD-ROM | disk | FTP | other *** search
/ ThrustMaster (Europe) (Press Kit) / ThrustMaster (Europe) (Press Kit).bin / progs / f22ccc / MK2.EXE / HORNETD.F22 < prev    next >
Encoding:
Text File  |  1996-09-24  |  5.2 KB  |  150 lines

  1.  
  2. REM ╔═══════════════════════════════════════════════════════════════════════╗
  3. REM ║       Hornet - Naval Striker Fighter by Spectrum Holobyte             ║
  4. REM ║                                                                       ║
  5. REM ║                      For FLCS/F22 & WCS Mark II                           ║
  6. REM ║                                                                       ║
  7. REM ║              Digital Throttle - Continuous Characters                 ║
  8. REM ║                                                                       ║
  9. REM ║  The aim of this configuration is to take advantage of the FLCS/F22'      ║
  10. REM ║  extra hat switches to assign major function groups to a single       ║
  11. REM ║  control.  While the M22 file for this F22 has EVERY game control     ║
  12. REM ║  entered, most are not needed in the heat of combat.  I strove for    ║
  13. REM ║  adherence to the primary goal of HOTAS; having the necessary control ║
  14. REM ║  instantly available without hunting the cockpit.  In A-A engagements ║
  15. REM ║  this becomes crucial.  That's why a lot of controls like map cursor  ║
  16. REM ║  keys and wingman commands (although that is certainly debateable),   ║
  17. REM ║  are not programmed into this F22, since these will almost exclusively║
  18. REM ║  be used in a non-hostile moment.  The beauty of the control afforded ║
  19. REM ║  by the FLCS/F22 and the C&CC software (especially the MACRO files) is if ║
  20. REM ║  you disagree with my interpretation, yours is easy enough to replace ║
  21. REM ║  mine with!  Try this one first though, my A-A kill ratio went up     ║
  22. REM ║  substantially and immediately as soon as I started using it!         ║
  23. REM ║                                                                       ║
  24. REM ╚═══════════════════════════════════════════════════════════════════════╝
  25.  
  26. REM ╔═══════════════════════════════════════════════════════════════════════╗
  27. REM ║          Written and Tested by Ed Bowser - August, 1994               ║
  28. REM ╚═══════════════════════════════════════════════════════════════════════╝
  29.  
  30. REM ╔══════════════════════════════════╗
  31. REM ║ WCS Mark II Base Switch Settings ║
  32. REM ║                                  ║
  33. REM ║ Black Hat switch = Digital       ║
  34. REM ║ Red Switch       = Digital       ║
  35. REM ╚══════════════════════════════════╝
  36.  
  37. REM NOTE: No throttle statement is needed with the WCS II when run thru the
  38. REM       FLCS/F22 as analog! When no throttle statement is encountered for the
  39. REM       WCS II, ANALOG is assumed, and the RED switch must set to ANALOG.
  40.  
  41. REM ╔═══════════════╗
  42. REM ║ Game Settings ║
  43. REM ╚═══════════════╝
  44.  
  45. REM Choose plain JOYSTICK in SYSTEM SETUP.  DO NOT select Thrustmaster
  46. REM Controls!
  47.  
  48. REM ╔══════════════╗
  49. REM ║ M22 Filename ║
  50. REM ╚══════════════╝
  51.  
  52. Mdef HORNETD
  53.  
  54. REM ╔════════════╗
  55. REM ║ Enable WCS ║
  56. REM ╚════════════╝
  57. PORTB1 IS TG1
  58. USE WCS
  59.  
  60. REM ╔═══════════════╗
  61. REM ║ FLCS/F22 Commands ║
  62. REM ╚═══════════════╝
  63.  
  64. BTN TG2 S3_In AVTR_On/Off
  65.         S3_Out Fire_Weapon
  66.  
  67. REM  Hat 1 as View Control
  68.  
  69. BTN H1U /T Padlock
  70.         /T Forward_View
  71. BTN H1L /P Left_View
  72.         /R Forward_View
  73. BTN H1R /P Right_View
  74.         /R Forward_View
  75. BTN H1D /P Rear_View
  76.         /R Forward_View
  77.  
  78. BTN S1 /P Target_View
  79.        /R Padlock
  80. BTN S2 S3_In Cycle_Air_To_Gnd
  81.        S3_Out Cycle_Air_to_Air
  82. BTN S3 RDR_TGT_Clr_Lock
  83. BTN S4 Look_Up/Dn
  84.  
  85. REM  Hat 2 as RADAR Mode and Target Selector
  86.  
  87. BTN H2U RDR_TGT_Select
  88. BTN H2L RDR_SCN_Mode
  89. BTN H2R RDR_ACM_Mode
  90. BTN H2D RDR_GM_Mode
  91.  
  92. REM  Hat 3 as RADAR adjustment control
  93.  
  94. BTN H3U RDR_Range
  95. BTN H3L RDR_Elevation
  96. BTN H3R RDR_Azimuth
  97. BTN H3D RDR_On/Off
  98.  
  99. REM  Hat 4 as External View control
  100.  
  101. BTN H4U S3_In HI_Toggle
  102.         S3_Out Sat_View
  103. BTN H4L S3_In Cycle_Left_DDI
  104.         S3_Out Target_View
  105. BTN H4R S3_In Cycle_Right_DDI
  106.         S3_Out Chase_View
  107. BTN H4D S3_In Swap_DDIs
  108.         S3_Out Ground_View
  109. BTN H4M S3_In Forward_View
  110.         S3_Out Forward_View
  111.  
  112. REM ╔═════════════════╗
  113. REM ║ WCS II Commands ║
  114. REM ╚═════════════════╝
  115.  
  116. BTN T1 Chaff_&_Flare
  117. BTN T2 ECM_On/Off
  118. BTN T3 RDR_IFF_Check
  119.  
  120. BTN T4 S3_In WheelBrakes
  121.        S3_Out AWACS
  122.  
  123. BTN T5 S3_In Gear
  124.        S3_Out Flaps
  125.  
  126. BTN T6 S3_In Bailout
  127.        S3_Out SpeedBrake
  128.  
  129. BTN T7 S3_In Cat_Launch
  130.        S3_Out RDR_ILS_On/Off
  131.  
  132. BTN T8 S3_In Call_LSO
  133.        S3_Out Panel_Up/Down
  134.  
  135. @Digital_Throttl
  136. @Minimum_Throttl
  137.  
  138. REM ╔═══════════════════════════════════════════════════════════════════╗
  139. REM ║                                                                   ║
  140. REM ║ NOTE: THIS FILE IS TO BE USED WITH THE F16C BLOCK 50 FLCS/F22         ║
  141. REM ║ joystick made exclusively by ThrustMaster, Inc.                   ║
  142. REM ║                                                                   ║
  143. REM ║ Don't have one of these joysticks that are so realistic they look ║
  144. REM ║ like they've been ripped out of the jet?  Just pick up your phone ║
  145. REM ║ and dial 503-639-3200 or fire up the FAX machine and send a FAX   ║
  146. REM ║ to ThrustMaster, Inc.  Ask for the Order department.  Have your   ║
  147. REM ║ Visa or MasterCard ready.                                         ║
  148. REM ║                                                                   ║
  149. REM ╚═══════════════════════════════════════════════════════════════════╝
  150.